from __future__ import print_function
from keras.models import Sequential, Model
from keras.layers.embeddings import Embedding
from keras.layers import Input, Activation, Dense, Permute, Dropout, add, dot,merge, concatenate
from keras.layers import LSTM
from keras.utils.data_utils import get_file
from keras.preprocessing.sequence import pad_sequences
from functools import reduce
import tarfile
import numpy as np
import re
def tokenize(sent):
# splitting the sentences based on spaces and tokenizing them
return [x.strip() for x in re.split('(\W+)?', sent) if x.strip()]
def parse_stories(lines, only_supporting=False):
# Trying to retrive the questions and
# ansers to the particular questions
data = []
story = []
for line in lines:
line = line.decode('utf-8').strip()
nid, line = line.split(' ', 1)
nid = int(nid)
if nid == 1:
story = []
if '\t' in line:
q, a, supporting = line.split('\t')
q = tokenize(q)
substory = None
if only_supporting:
# Only select the related substory
supporting = map(int, supporting.split())
substory = [story[i - 1] for i in supporting]
else:
# Provide all the substories
substory = [x for x in story if x]
data.append((substory, q, a))
story.append('')
else:
sent = tokenize(line)
story.append(sent)
return data
def get_stories(f, only_supporting=False, max_length=None):
# Discaring the stories longer than the max length defined
# and converting the lines in to a single story corresponding
# to the questions
data = parse_stories(f.readlines(), only_supporting=only_supporting)
flatten = lambda data: reduce(lambda x, y: x + y, data)
data = [(flatten(story), q, answer) for story, q, answer in data if not max_length or len(flatten(story)) < max_length]
return data
def vectorize_stories(data, word_idx, story_maxlen, query_maxlen):
# Mapping the length of stories against story with maximum
# length and doing necessary padding
X = []
Xq = []
Y = []
for story, query, answer in data:
x=[word_idx[w] for w in story]
xq=[word_idx[w] for w in query]
y=np.zeros(len(word_idx) + 1)
y[word_idx[answer]]=1
X.append(x)
Xq.append(xq)
Y.append(y)
return (pad_sequences(X, maxlen=story_maxlen),
pad_sequences(Xq, maxlen=query_maxlen),
np.array(Y))
''' Accessing the particula modules of the
Babi dataset saperated by the modules
'''
try:
path = get_file('babi-tasks-v1-2.tar.gz', origin='https://s3.amazonaws.com/text-datasets/babi_tasks_1-20_v1-2.tar.gz')
except:
print('Error downloading dataset, please download it manually:\n'
'$ wget http://www.thespermwhale.com/jaseweston/babi/tasks_1-20_v1-2.tar.gz\n'
'$ mv tasks_1-20_v1-2.tar.gz ~/.keras/datasets/babi-tasks-v1-2.tar.gz')
raise
tar = tarfile.open(path)
challenges = {'qa6_yes-no-questions': 'tasks_1-20_v1-2/en-10k/qa6_yes-no-questions_{}.txt'}
challenge_type = 'qa6_yes-no-questions'
challenge = challenges[challenge_type]
print('Extracting stories for the challenge:', challenge_type)
train_stories = get_stories(tar.extractfile(challenge.format('train')))
test_stories = get_stories(tar.extractfile(challenge.format('test')))
Extracting stories for the challenge: qa6_yes-no-questions
/usr/lib/python3.5/re.py:203: FutureWarning: split() requires a non-empty pattern match. return _compile(pattern, flags).split(string, maxsplit)
print(train_stories)
[(['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes')]
print(test_stories)
[(['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes')]
vocab = set()
for story, q, answer in train_stories + test_stories:
print(story)
vocab |= set(story + q + [answer])
vocab = sorted(vocab)
# Reserve 0 for masking via pad_sequences
vocab_size = len(vocab) + 1
story_maxlen = max(map(len, (x for x, _, _ in train_stories + test_stories)))
query_maxlen = max(map(len, (x for _, x, _ in train_stories + test_stories)))
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
with open('story_maxlen_yes-no-questions.txt','w') as file:
file.write(str(story_maxlen))
file.write('\n')
file.close()
with open('query_maxlen_yes-no-questions.txt','w') as file:
file.write(str(query_maxlen))
file.write('\n')
file.close()
''' Knowing some facts and stats about the
module of dataset we are using
'''
print('-')
print('Vocab size:', vocab_size, 'unique words')
print('Story max length:', story_maxlen, 'words')
print('Query max length:', query_maxlen, 'words')
print('Number of training stories:', len(train_stories))
print('Number of test stories:', len(test_stories))
print('-')
print('Here\'s what a "story" tuple looks like (input, query, answer):')
print(train_stories[0])
print('-')
print('Vectorizing the word sequences...')
word_idx = dict((c, i + 1) for i, c in enumerate(vocab))
idx_word = dict((i+1, c) for i,c in enumerate(vocab))
inputs_train, queries_train, answers_train = vectorize_stories(train_stories,
word_idx,
story_maxlen,
query_maxlen)
inputs_test, queries_test, answers_test = vectorize_stories(test_stories,
word_idx,
story_maxlen,
query_maxlen)
- Vocab size: 38 unique words Story max length: 156 words Query max length: 6 words Number of training stories: 10000 Number of test stories: 1000 - Here's what a "story" tuple looks like (input, query, answer): (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no') - Vectorizing the word sequences...
with open('word_idx_yes-no-questions.txt','w') as file:
file.write(str(word_idx))
file.close()
with open('idx_word_yes-no-questions.txt','w') as file:
file.write(str(idx_word))
file.close()
print(word_idx)
{'bedroom': 11, 'back': 9, 'Sandra': 7, 'John': 5, 'hallway': 19, 'the': 30, 'picked': 28, 'to': 32, 'Daniel': 3, 'journeyed': 21, 'dropped': 14, 'left': 23, 'Is': 4, 'there': 31, 'bathroom': 10, 'apple': 8, 'down': 13, 'up': 35, 'office': 27, '.': 1, 'garden': 16, 'grabbed': 18, 'went': 36, 'in': 20, 'travelled': 34, 'football': 15, 'took': 33, 'kitchen': 22, 'no': 26, 'discarded': 12, 'moved': 25, 'got': 17, 'milk': 24, '?': 2, 'put': 29, 'Mary': 6, 'yes': 37}
print(idx_word)
{1: '.', 2: '?', 3: 'Daniel', 4: 'Is', 5: 'John', 6: 'Mary', 7: 'Sandra', 8: 'apple', 9: 'back', 10: 'bathroom', 11: 'bedroom', 12: 'discarded', 13: 'down', 14: 'dropped', 15: 'football', 16: 'garden', 17: 'got', 18: 'grabbed', 19: 'hallway', 20: 'in', 21: 'journeyed', 22: 'kitchen', 23: 'left', 24: 'milk', 25: 'moved', 26: 'no', 27: 'office', 28: 'picked', 29: 'put', 30: 'the', 31: 'there', 32: 'to', 33: 'took', 34: 'travelled', 35: 'up', 36: 'went', 37: 'yes'}
print('-')
print('inputs: integer tensor of shape (samples, max_length)')
print('inputs_train shape:', inputs_train.shape)
print('inputs_test shape:', inputs_test.shape)
print('-')
print('queries: integer tensor of shape (samples, max_length)')
print('queries_train shape:', queries_train.shape)
print('queries_test shape:', queries_test.shape)
print('-')
print('answers: binary (1 or 0) tensor of shape (samples, vocab_size)')
print('answers_train shape:', answers_train.shape)
print('answers_test shape:', answers_test.shape)
print('-')
print('Compiling...')
- inputs: integer tensor of shape (samples, max_length) inputs_train shape: (10000, 156) inputs_test shape: (1000, 156) - queries: integer tensor of shape (samples, max_length) queries_train shape: (10000, 6) queries_test shape: (1000, 6) - answers: binary (1 or 0) tensor of shape (samples, vocab_size) answers_train shape: (10000, 38) answers_test shape: (1000, 38) - Compiling...
train_epochs = 120
batch_size = 32
lstm_size = 64
# initiating
input_sequence = Input((story_maxlen,))
question = Input((query_maxlen,))
print('Input sequence:', input_sequence)
print('Question:', question)
# defining the encoder for the input and embedding the vocab
input_encoder_m = Sequential()
input_encoder_m.add(Embedding(input_dim=vocab_size,
output_dim=64))
input_encoder_m.add(Dropout(0.3))
# mapping the dimensions according to the maximum length on input
input_encoder_c = Sequential()
input_encoder_c.add(Embedding(input_dim=vocab_size,
output_dim=query_maxlen))
input_encoder_c.add(Dropout(0.3))
# vectorizing the questions
question_encoder = Sequential()
question_encoder.add(Embedding(input_dim=vocab_size,
output_dim=64,
input_length=query_maxlen))
question_encoder.add(Dropout(0.3))
# conctinating input stories and questions
input_encoded_m = input_encoder_m(input_sequence)
print('Input encoded m', input_encoded_m)
input_encoded_c = input_encoder_c(input_sequence)
print('Input encoded c', input_encoded_c)
question_encoded = question_encoder(question)
print('Question encoded', question_encoded)
# cross refrencing the questions against the stories
match = merge([input_encoded_m, question_encoded], mode='dot', dot_axes=(2, 2))
print(match.shape)
match = Activation('softmax')(match)
print('Match shape', match)
response = merge([match, input_encoded_c], mode='sum')
response = Permute((2, 1))(response)
print('Response shape', response)
# mapping answers against the vector of question and stories
answer = merge([response, question_encoded], mode='concat')
print('Answer shape', answer)
answer = LSTM(64)(answer)
answer = Dropout(0.3)(answer)
answer = Dense(vocab_size)(answer)
# popping out prob. of answers
answer = Activation('softmax')(answer)
Input sequence: Tensor("input_7:0", shape=(?, 156), dtype=float32)
Question: Tensor("input_8:0", shape=(?, 6), dtype=float32)
Input encoded m Tensor("sequential_19/dropout_13/cond/Merge:0", shape=(?, 156, 64), dtype=float32)
Input encoded c Tensor("sequential_20/dropout_14/cond/Merge:0", shape=(?, 156, 6), dtype=float32)
Question encoded Tensor("sequential_21/dropout_15/cond/Merge:0", shape=(?, 6, 64), dtype=float32)
(?, 156, 6)
Match shape Tensor("activation_7/truediv:0", shape=(?, 156, 6), dtype=float32)
Response shape Tensor("permute_4/transpose:0", shape=(?, 6, 156), dtype=float32)
Answer shape Tensor("merge_12/concat:0", shape=(?, 6, 220), dtype=float32)
/usr/local/lib/python3.5/dist-packages/ipykernel_launcher.py:38: UserWarning: The `merge` function is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc. /home/ubuntu/src/keras/keras/legacy/layers.py:464: UserWarning: The `Merge` layer is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc. name=name) /usr/local/lib/python3.5/dist-packages/ipykernel_launcher.py:43: UserWarning: The `merge` function is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc. /usr/local/lib/python3.5/dist-packages/ipykernel_launcher.py:48: UserWarning: The `merge` function is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc.
model = Model([input_sequence, question], answer)
model.compile(optimizer='rmsprop', loss='categorical_crossentropy',
metrics=['accuracy'])
model.fit([inputs_train, queries_train], answers_train, batch_size, train_epochs,
validation_data=([inputs_test, queries_test], answers_test))
Train on 10000 samples, validate on 1000 samples Epoch 1/120 10000/10000 [==============================] - 5s 535us/step - loss: 0.7840 - acc: 0.4978 - val_loss: 0.6940 - val_acc: 0.5030 Epoch 2/120 10000/10000 [==============================] - 5s 462us/step - loss: 0.7011 - acc: 0.4973 - val_loss: 0.6952 - val_acc: 0.4970 Epoch 3/120 10000/10000 [==============================] - 5s 461us/step - loss: 0.6966 - acc: 0.4946 - val_loss: 0.6955 - val_acc: 0.4970 Epoch 4/120 10000/10000 [==============================] - 5s 461us/step - loss: 0.6949 - acc: 0.5045 - val_loss: 0.6943 - val_acc: 0.4970 Epoch 5/120 10000/10000 [==============================] - 5s 457us/step - loss: 0.6943 - acc: 0.5030 - val_loss: 0.6960 - val_acc: 0.4970 Epoch 6/120 10000/10000 [==============================] - 5s 456us/step - loss: 0.6929 - acc: 0.5152 - val_loss: 0.7077 - val_acc: 0.5030 Epoch 7/120 10000/10000 [==============================] - 5s 459us/step - loss: 0.6934 - acc: 0.5117 - val_loss: 0.6948 - val_acc: 0.4710 Epoch 8/120 10000/10000 [==============================] - 5s 456us/step - loss: 0.6888 - acc: 0.5360 - val_loss: 0.6847 - val_acc: 0.5400 Epoch 9/120 10000/10000 [==============================] - 5s 458us/step - loss: 0.6453 - acc: 0.6207 - val_loss: 0.5959 - val_acc: 0.6940 Epoch 10/120 10000/10000 [==============================] - 5s 456us/step - loss: 0.5811 - acc: 0.6991 - val_loss: 0.5327 - val_acc: 0.7510 Epoch 11/120 10000/10000 [==============================] - 5s 457us/step - loss: 0.5138 - acc: 0.7511 - val_loss: 0.4732 - val_acc: 0.7830 Epoch 12/120 10000/10000 [==============================] - 5s 459us/step - loss: 0.4615 - acc: 0.7909 - val_loss: 0.4381 - val_acc: 0.7990 Epoch 13/120 10000/10000 [==============================] - 5s 457us/step - loss: 0.4231 - acc: 0.8171 - val_loss: 0.4249 - val_acc: 0.8190 Epoch 14/120 10000/10000 [==============================] - 5s 457us/step - loss: 0.4028 - acc: 0.8288 - val_loss: 0.4055 - val_acc: 0.8330 Epoch 15/120 10000/10000 [==============================] - 5s 468us/step - loss: 0.3810 - acc: 0.8412 - val_loss: 0.4046 - val_acc: 0.8320 Epoch 16/120 10000/10000 [==============================] - 5s 458us/step - loss: 0.3605 - acc: 0.8466 - val_loss: 0.3852 - val_acc: 0.8270 Epoch 17/120 10000/10000 [==============================] - 5s 456us/step - loss: 0.3571 - acc: 0.8485 - val_loss: 0.3834 - val_acc: 0.8320 Epoch 18/120 10000/10000 [==============================] - 5s 457us/step - loss: 0.3519 - acc: 0.8534 - val_loss: 0.4002 - val_acc: 0.8370 Epoch 19/120 10000/10000 [==============================] - 5s 458us/step - loss: 0.3380 - acc: 0.8567 - val_loss: 0.3710 - val_acc: 0.8380 Epoch 20/120 10000/10000 [==============================] - 5s 456us/step - loss: 0.3361 - acc: 0.8608 - val_loss: 0.3745 - val_acc: 0.8370 Epoch 21/120 10000/10000 [==============================] - 5s 457us/step - loss: 0.3301 - acc: 0.8584 - val_loss: 0.3666 - val_acc: 0.8380 Epoch 22/120 10000/10000 [==============================] - 5s 457us/step - loss: 0.3233 - acc: 0.8606 - val_loss: 0.3563 - val_acc: 0.8410 Epoch 23/120 10000/10000 [==============================] - 5s 456us/step - loss: 0.3172 - acc: 0.8587 - val_loss: 0.3653 - val_acc: 0.8380 Epoch 24/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.3156 - acc: 0.8613 - val_loss: 0.3605 - val_acc: 0.8410 Epoch 25/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.3077 - acc: 0.8617 - val_loss: 0.3716 - val_acc: 0.8390 Epoch 26/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.3099 - acc: 0.8684 - val_loss: 0.3545 - val_acc: 0.8410 Epoch 27/120 10000/10000 [==============================] - 5s 456us/step - loss: 0.3060 - acc: 0.8660 - val_loss: 0.3883 - val_acc: 0.8390 Epoch 28/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.3029 - acc: 0.8690 - val_loss: 0.3574 - val_acc: 0.8380 Epoch 29/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.2973 - acc: 0.8683 - val_loss: 0.3640 - val_acc: 0.8470 Epoch 30/120 10000/10000 [==============================] - 5s 457us/step - loss: 0.2973 - acc: 0.8672 - val_loss: 0.3600 - val_acc: 0.8350 Epoch 31/120 10000/10000 [==============================] - 5s 456us/step - loss: 0.2902 - acc: 0.8724 - val_loss: 0.3649 - val_acc: 0.8420 Epoch 32/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.2899 - acc: 0.8733 - val_loss: 0.3850 - val_acc: 0.8370 Epoch 33/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.2918 - acc: 0.8713 - val_loss: 0.3603 - val_acc: 0.8370 Epoch 34/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.2881 - acc: 0.8713 - val_loss: 0.3516 - val_acc: 0.8390 Epoch 35/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.2872 - acc: 0.8758 - val_loss: 0.3687 - val_acc: 0.8360 Epoch 36/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.2846 - acc: 0.8747 - val_loss: 0.3853 - val_acc: 0.8300 Epoch 37/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.2819 - acc: 0.8765 - val_loss: 0.3832 - val_acc: 0.8370 Epoch 38/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.2786 - acc: 0.8782 - val_loss: 0.3762 - val_acc: 0.8410 Epoch 39/120 10000/10000 [==============================] - 5s 456us/step - loss: 0.2738 - acc: 0.8801 - val_loss: 0.3751 - val_acc: 0.8390 Epoch 40/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.2706 - acc: 0.8814 - val_loss: 0.4028 - val_acc: 0.8400 Epoch 41/120 10000/10000 [==============================] - 5s 456us/step - loss: 0.2726 - acc: 0.8807 - val_loss: 0.3886 - val_acc: 0.8260 Epoch 42/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.2669 - acc: 0.8801 - val_loss: 0.3746 - val_acc: 0.8350 Epoch 43/120 10000/10000 [==============================] - 5s 456us/step - loss: 0.2633 - acc: 0.8816 - val_loss: 0.3941 - val_acc: 0.8340 Epoch 44/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.2613 - acc: 0.8844 - val_loss: 0.3974 - val_acc: 0.8340 Epoch 45/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.2603 - acc: 0.8843 - val_loss: 0.3970 - val_acc: 0.8300 Epoch 46/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.2540 - acc: 0.8918 - val_loss: 0.4087 - val_acc: 0.8290 Epoch 47/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.2499 - acc: 0.8895 - val_loss: 0.4176 - val_acc: 0.8310 Epoch 48/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.2519 - acc: 0.8890 - val_loss: 0.4168 - val_acc: 0.8210 Epoch 49/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.2479 - acc: 0.8916 - val_loss: 0.4112 - val_acc: 0.8330 Epoch 50/120 10000/10000 [==============================] - 5s 463us/step - loss: 0.2465 - acc: 0.8913 - val_loss: 0.4050 - val_acc: 0.8340 Epoch 51/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.2368 - acc: 0.8977 - val_loss: 0.4257 - val_acc: 0.8260 Epoch 52/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.2364 - acc: 0.8943 - val_loss: 0.4280 - val_acc: 0.8310 Epoch 53/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.2406 - acc: 0.8929 - val_loss: 0.4283 - val_acc: 0.8320 Epoch 54/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.2362 - acc: 0.8964 - val_loss: 0.4412 - val_acc: 0.8300 Epoch 55/120 10000/10000 [==============================] - 5s 456us/step - loss: 0.2326 - acc: 0.8989 - val_loss: 0.4424 - val_acc: 0.8260 Epoch 56/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.2299 - acc: 0.8986 - val_loss: 0.5013 - val_acc: 0.8250 Epoch 57/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.2266 - acc: 0.9033 - val_loss: 0.4634 - val_acc: 0.8360 Epoch 58/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.2201 - acc: 0.9076 - val_loss: 0.4710 - val_acc: 0.8350 Epoch 59/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.2230 - acc: 0.9016 - val_loss: 0.4283 - val_acc: 0.8230 Epoch 60/120 10000/10000 [==============================] - 5s 452us/step - loss: 0.2169 - acc: 0.9078 - val_loss: 0.4701 - val_acc: 0.8260 Epoch 61/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.2126 - acc: 0.9085 - val_loss: 0.4383 - val_acc: 0.8320 Epoch 62/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.2111 - acc: 0.9085 - val_loss: 0.4503 - val_acc: 0.8260 Epoch 63/120 10000/10000 [==============================] - 5s 452us/step - loss: 0.2017 - acc: 0.9149 - val_loss: 0.4975 - val_acc: 0.8340 Epoch 64/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.2002 - acc: 0.9125 - val_loss: 0.4780 - val_acc: 0.8230 Epoch 65/120 10000/10000 [==============================] - 5s 452us/step - loss: 0.2027 - acc: 0.9130 - val_loss: 0.5158 - val_acc: 0.8190 Epoch 66/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.1925 - acc: 0.9172 - val_loss: 0.5323 - val_acc: 0.8290 Epoch 67/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.1990 - acc: 0.9167 - val_loss: 0.5157 - val_acc: 0.8240 Epoch 68/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.1929 - acc: 0.9192 - val_loss: 0.5225 - val_acc: 0.8220 Epoch 69/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.1938 - acc: 0.9187 - val_loss: 0.4825 - val_acc: 0.8250 Epoch 70/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.1860 - acc: 0.9219 - val_loss: 0.5177 - val_acc: 0.8320 Epoch 71/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.1849 - acc: 0.9211 - val_loss: 0.5258 - val_acc: 0.8320 Epoch 72/120 10000/10000 [==============================] - 5s 452us/step - loss: 0.1800 - acc: 0.9233 - val_loss: 0.5197 - val_acc: 0.8330 Epoch 73/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.1848 - acc: 0.9199 - val_loss: 0.5081 - val_acc: 0.8300 Epoch 74/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.1803 - acc: 0.9241 - val_loss: 0.5181 - val_acc: 0.8390 Epoch 75/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.1785 - acc: 0.9261 - val_loss: 0.5771 - val_acc: 0.8370 Epoch 76/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.1790 - acc: 0.9253 - val_loss: 0.5515 - val_acc: 0.8260 Epoch 77/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.1673 - acc: 0.9306 - val_loss: 0.5969 - val_acc: 0.8270 Epoch 78/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.1693 - acc: 0.9304 - val_loss: 0.5472 - val_acc: 0.8160 Epoch 79/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.1658 - acc: 0.9308 - val_loss: 0.5867 - val_acc: 0.8300 Epoch 80/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.1649 - acc: 0.9314 - val_loss: 0.5964 - val_acc: 0.8270 Epoch 81/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.1609 - acc: 0.9332 - val_loss: 0.6198 - val_acc: 0.8280 Epoch 82/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.1608 - acc: 0.9324 - val_loss: 0.5571 - val_acc: 0.8220 Epoch 83/120 10000/10000 [==============================] - 5s 452us/step - loss: 0.1615 - acc: 0.9352 - val_loss: 0.5589 - val_acc: 0.8200 Epoch 84/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.1583 - acc: 0.9340 - val_loss: 0.5686 - val_acc: 0.8080 Epoch 85/120 10000/10000 [==============================] - 5s 459us/step - loss: 0.1589 - acc: 0.9339 - val_loss: 0.6101 - val_acc: 0.8260 Epoch 86/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.1597 - acc: 0.9337 - val_loss: 0.6236 - val_acc: 0.8280 Epoch 87/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.1497 - acc: 0.9384 - val_loss: 0.6948 - val_acc: 0.8210 Epoch 88/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.1489 - acc: 0.9403 - val_loss: 0.6202 - val_acc: 0.8360 Epoch 89/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.1490 - acc: 0.9399 - val_loss: 0.6851 - val_acc: 0.8290 Epoch 90/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.1527 - acc: 0.9357 - val_loss: 0.6431 - val_acc: 0.8260 Epoch 91/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.1448 - acc: 0.9395 - val_loss: 0.6114 - val_acc: 0.8270 Epoch 92/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.1411 - acc: 0.9406 - val_loss: 0.6342 - val_acc: 0.8180 Epoch 93/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.1458 - acc: 0.9393 - val_loss: 0.6351 - val_acc: 0.8300 Epoch 94/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.1360 - acc: 0.9426 - val_loss: 0.6364 - val_acc: 0.8270 Epoch 95/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.1387 - acc: 0.9451 - val_loss: 0.6705 - val_acc: 0.8250 Epoch 96/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.1469 - acc: 0.9400 - val_loss: 0.7000 - val_acc: 0.8360 Epoch 97/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.1412 - acc: 0.9434 - val_loss: 0.6621 - val_acc: 0.8260 Epoch 98/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.1383 - acc: 0.9442 - val_loss: 0.6594 - val_acc: 0.8170 Epoch 99/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.1344 - acc: 0.9444 - val_loss: 0.6488 - val_acc: 0.8290 Epoch 100/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.1280 - acc: 0.9472 - val_loss: 0.6815 - val_acc: 0.8210 Epoch 101/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.1264 - acc: 0.9475 - val_loss: 0.7113 - val_acc: 0.8170 Epoch 102/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.1261 - acc: 0.9517 - val_loss: 0.7199 - val_acc: 0.8150 Epoch 103/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.1309 - acc: 0.9477 - val_loss: 0.6928 - val_acc: 0.8230 Epoch 104/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.1261 - acc: 0.9503 - val_loss: 0.6872 - val_acc: 0.8180 Epoch 105/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.1300 - acc: 0.9479 - val_loss: 0.6930 - val_acc: 0.8130 Epoch 106/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.1280 - acc: 0.9507 - val_loss: 0.7523 - val_acc: 0.8210 Epoch 107/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.1208 - acc: 0.9524 - val_loss: 0.6962 - val_acc: 0.8130 Epoch 108/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.1239 - acc: 0.9517 - val_loss: 0.7037 - val_acc: 0.8160 Epoch 109/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.1206 - acc: 0.9518 - val_loss: 0.6832 - val_acc: 0.8080 Epoch 110/120 10000/10000 [==============================] - 5s 452us/step - loss: 0.1149 - acc: 0.9548 - val_loss: 0.7752 - val_acc: 0.8160 Epoch 111/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.1183 - acc: 0.9541 - val_loss: 0.6883 - val_acc: 0.8250 Epoch 112/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.1176 - acc: 0.9527 - val_loss: 0.7505 - val_acc: 0.8220 Epoch 113/120 10000/10000 [==============================] - 5s 456us/step - loss: 0.1151 - acc: 0.9555 - val_loss: 0.7452 - val_acc: 0.8180 Epoch 114/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.1164 - acc: 0.9524 - val_loss: 0.7370 - val_acc: 0.8130 Epoch 115/120 10000/10000 [==============================] - 5s 456us/step - loss: 0.1157 - acc: 0.9536 - val_loss: 0.7695 - val_acc: 0.8180 Epoch 116/120 10000/10000 [==============================] - 5s 455us/step - loss: 0.1124 - acc: 0.9546 - val_loss: 0.7495 - val_acc: 0.8150 Epoch 117/120 10000/10000 [==============================] - 5s 453us/step - loss: 0.1105 - acc: 0.9578 - val_loss: 0.8049 - val_acc: 0.8130 Epoch 118/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.1116 - acc: 0.9586 - val_loss: 0.8283 - val_acc: 0.8190 Epoch 119/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.1103 - acc: 0.9571 - val_loss: 0.8035 - val_acc: 0.8260 Epoch 120/120 10000/10000 [==============================] - 5s 454us/step - loss: 0.1100 - acc: 0.9578 - val_loss: 0.8586 - val_acc: 0.8210
<keras.callbacks.History at 0x7fee3d6b1940>
''' Getting the feel for the test dataset
and how it is devided.
'''
' Getting the feel for the test dataset\nand how it is devided.\n'
for i in range(0,10):
current_inp = test_stories[i]
current_story, current_query, current_answer = vectorize_stories([current_inp], word_idx, story_maxlen, query_maxlen)
current_prediction = model.predict([current_story, current_query])
current_prediction = idx_word[np.argmax(current_prediction)]
print(' '.join(current_inp[0]), ' '.join(current_inp[1]), '| Prediction:', current_prediction, '| Ground Truth:', current_inp[2])
print("-----------------------------------------------------------------------------------------")
Mary got the milk there . John moved to the bedroom . Is John in the kitchen ? | Prediction: no | Ground Truth: no ----------------------------------------------------------------------------------------- Mary got the milk there . John moved to the bedroom . Mary discarded the milk . John went to the garden . Is John in the kitchen ? | Prediction: no | Ground Truth: no ----------------------------------------------------------------------------------------- Mary got the milk there . John moved to the bedroom . Mary discarded the milk . John went to the garden . Daniel moved to the bedroom . Daniel went to the garden . Is John in the garden ? | Prediction: yes | Ground Truth: yes ----------------------------------------------------------------------------------------- Mary got the milk there . John moved to the bedroom . Mary discarded the milk . John went to the garden . Daniel moved to the bedroom . Daniel went to the garden . Daniel travelled to the bathroom . Sandra travelled to the bedroom . Is Daniel in the bathroom ? | Prediction: yes | Ground Truth: yes ----------------------------------------------------------------------------------------- Mary got the milk there . John moved to the bedroom . Mary discarded the milk . John went to the garden . Daniel moved to the bedroom . Daniel went to the garden . Daniel travelled to the bathroom . Sandra travelled to the bedroom . Mary took the football there . Sandra grabbed the milk there . Is Daniel in the bedroom ? | Prediction: yes | Ground Truth: no ----------------------------------------------------------------------------------------- Daniel went back to the kitchen . Mary grabbed the apple there . Is Daniel in the office ? | Prediction: no | Ground Truth: no ----------------------------------------------------------------------------------------- Daniel went back to the kitchen . Mary grabbed the apple there . Daniel journeyed to the office . John went back to the office . Is Daniel in the hallway ? | Prediction: no | Ground Truth: no ----------------------------------------------------------------------------------------- Daniel went back to the kitchen . Mary grabbed the apple there . Daniel journeyed to the office . John went back to the office . Mary left the apple . Daniel went to the hallway . Is Daniel in the hallway ? | Prediction: yes | Ground Truth: yes ----------------------------------------------------------------------------------------- Daniel went back to the kitchen . Mary grabbed the apple there . Daniel journeyed to the office . John went back to the office . Mary left the apple . Daniel went to the hallway . John went to the hallway . Daniel picked up the milk there . Is John in the kitchen ? | Prediction: no | Ground Truth: no ----------------------------------------------------------------------------------------- Daniel went back to the kitchen . Mary grabbed the apple there . Daniel journeyed to the office . John went back to the office . Mary left the apple . Daniel went to the hallway . John went to the hallway . Daniel picked up the milk there . John grabbed the football there . Mary got the apple there . Is Daniel in the hallway ? | Prediction: yes | Ground Truth: yes -----------------------------------------------------------------------------------------
print(story)
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
from keras.models import model_from_json
model_json = model.to_json()
with open("model_yes-no-questions.json", "w") as json_file:
json_file.write(model_json)
# serialize weights to HDF5
model.save_weights("model_yes-no-questions.h5")
print("Saved model to disk")
Saved model to disk
json_file = open('model_yes-no-questions.json', 'r')
loaded_model_json = json_file.read()
json_file.close()
loaded_model = model_from_json(loaded_model_json)
# load weights into new model
loaded_model.load_weights("model_yes-no-questions.h5")
/home/ubuntu/src/keras/keras/engine/topology.py:1269: UserWarning: The `Merge` layer is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc. return cls(**config)
test_stories[0]
(['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no')
loaded_model.compile(optimizer='rmsprop', loss='categorical_crossentropy',
metrics=['accuracy'])
for i in range(0,10):
current_inp = test_stories[i]
current_story, current_query, current_answer = vectorize_stories([current_inp], word_idx, story_maxlen, query_maxlen)
current_prediction = loaded_model.predict([current_story, current_query])
current_prediction = idx_word[np.argmax(current_prediction)]
print(' '.join(current_inp[0]), ' '.join(current_inp[1]), '| Prediction:', current_prediction, '| Ground Truth:', current_inp[2])
print("-----------------------------------------------------------------------------------------")
Mary got the milk there . John moved to the bedroom . Is John in the kitchen ? | Prediction: no | Ground Truth: no ----------------------------------------------------------------------------------------- Mary got the milk there . John moved to the bedroom . Mary discarded the milk . John went to the garden . Is John in the kitchen ? | Prediction: no | Ground Truth: no ----------------------------------------------------------------------------------------- Mary got the milk there . John moved to the bedroom . Mary discarded the milk . John went to the garden . Daniel moved to the bedroom . Daniel went to the garden . Is John in the garden ? | Prediction: yes | Ground Truth: yes ----------------------------------------------------------------------------------------- Mary got the milk there . John moved to the bedroom . Mary discarded the milk . John went to the garden . Daniel moved to the bedroom . Daniel went to the garden . Daniel travelled to the bathroom . Sandra travelled to the bedroom . Is Daniel in the bathroom ? | Prediction: yes | Ground Truth: yes ----------------------------------------------------------------------------------------- Mary got the milk there . John moved to the bedroom . Mary discarded the milk . John went to the garden . Daniel moved to the bedroom . Daniel went to the garden . Daniel travelled to the bathroom . Sandra travelled to the bedroom . Mary took the football there . Sandra grabbed the milk there . Is Daniel in the bedroom ? | Prediction: yes | Ground Truth: no ----------------------------------------------------------------------------------------- Daniel went back to the kitchen . Mary grabbed the apple there . Is Daniel in the office ? | Prediction: no | Ground Truth: no ----------------------------------------------------------------------------------------- Daniel went back to the kitchen . Mary grabbed the apple there . Daniel journeyed to the office . John went back to the office . Is Daniel in the hallway ? | Prediction: no | Ground Truth: no ----------------------------------------------------------------------------------------- Daniel went back to the kitchen . Mary grabbed the apple there . Daniel journeyed to the office . John went back to the office . Mary left the apple . Daniel went to the hallway . Is Daniel in the hallway ? | Prediction: yes | Ground Truth: yes ----------------------------------------------------------------------------------------- Daniel went back to the kitchen . Mary grabbed the apple there . Daniel journeyed to the office . John went back to the office . Mary left the apple . Daniel went to the hallway . John went to the hallway . Daniel picked up the milk there . Is John in the kitchen ? | Prediction: no | Ground Truth: no ----------------------------------------------------------------------------------------- Daniel went back to the kitchen . Mary grabbed the apple there . Daniel journeyed to the office . John went back to the office . Mary left the apple . Daniel went to the hallway . John went to the hallway . Daniel picked up the milk there . John grabbed the football there . Mary got the apple there . Is Daniel in the hallway ? | Prediction: yes | Ground Truth: yes -----------------------------------------------------------------------------------------
print(current_story)
[[ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 36 9 32 30 22 1 6 18 30 8 31 1 3 21 32 30 27 1 5 36 9 32 30 27 1 6 23 30 8 1 3 36 32 30 19 1 5 36 32 30 19 1 3 28 35 30 24 31 1 5 18 30 15 31 1 6 17 30 8 31 1]]
print(current_query)
[[ 4 3 20 30 19 2]]
print(len(current_query))
1
print(test_stories[0])
(['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no')